on hover active until i hover next css

71

$('div').on('mouseover', function() 
  $('div').removeClass('hover');
  $(this).addClass('hover');
});
$('div').on('mouseover', function() {
  $('div').removeClass('hover');
  $(this).addClass('hover');
});

Comments

Submit
0 Comments